home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ┌────────────────────────────────────────────────────────────────────────┐
- echo │ This utility will print a catalog of all the Holiday Clip Art in this │
- echo │ collection, plus the additional clip art you get when you register. │
- echo │ You *must* have an HP LaserJet or compatible printer to run this batch │
- echo │ file correctly. The catalog is one page in length. │
- echo │ │
- echo │ This batch file assumes your laser printer is connected to LPT1. If it │
- echo │ is *not* attached to LPT1, press Ctrl-C now to abort this batch file │
- echo │ and then rerun the batch file, passing it the printer port name: │
- echo │ │
- echo │ catalog LPT2: OR catalog COM1: │
- echo │ │
- echo │ Make sure your printer is on and ready to run. Then press the enter │
- echo │ key to print a copy of the catalog. │
- echo │ │
- echo │ If you do *not* want to print this catalog, or you do not have an HP │
- echo │ LaserJet or compatible printer, press the Ctrl-C key now to abort this │
- echo │ batch file. │
- echo └────────────────────────────────────────────────────────────────────────┘
- pause
- echo Printing a one page catalog, this will take a moment...
- if "%1"=="" goto DOLPT1
- copy /b holidays.lj2 %1
- goto done
- :DOLPT1
- copy /b holidays.lj2 lpt1:
- :DONE
- del holidays.lj2
- dir *.pcx /w /o
-